Filter hook '{$context}_memory_limit'
in WP Core File wp-includes/functions.php at line 7845
Description
Filters the memory limit allocated for an arbitrary context. The dynamic portion of the hook name, `$context`, refers to an arbitrary context passed on calling the function. This allows for plugins to define their own contexts for raising the memory limit.
Occurrences
Filename |
Line Number |
wp-includes/functions.php |
7845 |
Parameters
Type |
Name |
Description |
int|string |
$filtered_limit |
Maximum memory limit to allocate for this context. Default WP_MAX_MEMORY_LIMIT` or the original php.ini `memory_limit`, whichever is higher. Accepts an integer (bytes), or a shorthand string notation, such as '256M'. |
PHP Doc
/**
* Filters the memory limit allocated for an arbitrary context.
*
* The dynamic portion of the hook name, `$context`, refers to an arbitrary
* context passed on calling the function. This allows for plugins to define
* their own contexts for raising the memory limit.
*
* @since 4.6.0
*
* @param int|string $filtered_limit Maximum memory limit to allocate for this context.
* Default WP_MAX_MEMORY_LIMIT` or the original php.ini `memory_limit`,
* whichever is higher. Accepts an integer (bytes), or a
* shorthand string notation, such as '256M'.
*/